/*** CSS VARIABLES ***/
:root {
    --black: #1a1a1a;
    --black-blue: #021423;
    --grey: #cfd9de;
    --blue-grey: #ccd8de;
    --dark-grey: #97a1a6;
    --blue: #0f91f2;
    --orange: #ff5b00;
    --white: #ffffff;
    --font: Arial, sans-serif;
  
    /* responsive size conversion: 1px = 0.13vh */
    --f1: 5vh;
    --f2: 4vh;
    --f3: 3.8vh;
    --f4: 3vh;
    --f5: 2.4vh;
    --f6: 2vh;
    --f6-px: 18px;
    --f7: 1.8vh;
    --f7-px: 14px;
    --f8: 1.5vh;
    --f8-px: 12px;
    --f9: 1.3vh;
  }

  
/*** COMMON ELEMENTS ***/


.section-title {
    text-align: center;
    font-size: var(--f6);
    font-weight: bold;
    margin-bottom: 2vh;
    margin-top: 2vh;
}

#past-members i{
    font-size: var(--f8);
}

.div-inline {
    display: inline-flex;
    align-items: center;
}



/*** STEERING COMMITTEE ***/
#steering-committee {
    height: 40vh;
}  

@media (max-width: 991px){
    #steering-committee {
        height: 420px;
    }    
}
@media (max-width:768px){
    #steering-committee {
        height: 480px;
    }  
}
@media (max-width: 576px){
    #steering-committee {
        height: 520px;
    }  
}

#dropdown-steering-committee, #dropdown-results{
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: var(--f6);
    font-weight: bold;
    margin-bottom: 2vh;
}

#dropdown-steering-committee select {
    padding-top: 1vh;
    padding-bottom: 1vh;
    padding-left: 15px;
    padding-right: 30px;
    border-radius: 100px;
    border: 2px solid var(--blue);
    
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;      
}

.members-div {
    display: grid;
    font-size: var(--f7);
}


/*** ADVISORY BOARD ***/
#current-eab-members, #past-eab-members{
    padding:0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.photo-row {
    justify-content: center;
}

@media (min-width: 992px){
    #current-eab-members {
        padding-right: 100px;
    }    
}

#current-members {
    justify-content: center;
}

#advisory-board .card {
    align-items: center;
    background: none;
    border:none;
    margin-bottom: 2vh;
}

#advisory-board .card img {
    width: 15vh !important;
    height:15vh;
    object-fit:cover;
    object-position: top;
    border-radius:50%;
}

#advisory-board .card-body {
    padding: 0;
}

#advisory-board .card-title {
    text-align: center;
    font-size: var(--f7);
    font-weight: bold;
    margin-bottom: 0;
}

#advisory-board .card-text {
    font-size: var(--f8);
    font-style: italic;
}
